4.18.1 Upgrading From Version 3.22 to Version 3.23

MySQL Version 3.23 supports tables of the new MyISAM type and the old ISAM type. You don't have to convert your old tables to use these with Version 3.23. By default, all new tables will be created with type MyISAM (unless you start mysqld with the --default-table-type=isam option). You can change an ISAM table to a MyISAM table with ALTER TABLE table_name TYPE=MyISAM or the Perl script mysql_convert_table_format.

Version 3.22 and 3.21 clients will work without any problems with a Version 3.23 server.

The following lists tell what you have to watch out for when upgrading to Version 3.23:


Comments:

Felix Schueren <felix@monsterville.de>: For those using GRANT/REVOKE with user@FQDN-style access rights - beware, as upgrading will require you to write the user part as 'user@"host.example.com"' where before 'user@host.example.com' worked fine. I haven't seen this mentioned anywhere else.

Search:

Up Previous Next ChaptersSectionsFunctionsConcepts